Displaying XML Using XSLT
XSLT stands for Extensible Stylesheet Language Transformation....
read more
Displaying XML Using CSS
XML stands for Extensible Markup Language. It is a dynamic markup language. It is used to transform data from one form to another form. An XML file can be displayed using two ways. These are as follows :-...
read more
Basics of SOAP – Simple Object Access Protocol
Simple Object Access Protocol(SOAP) is a network protocol for exchanging structured data between nodes. It uses XML format to transfer messages. It works on top of application layer protocols like HTTP and SMTP for notations and transmission. SOAP allows processes to communicate throughout platforms, languages, and operating system, since protocols like HTTP are already installed on all platforms. SOAP was designed by Bob Atkinson, Don Box, Dave Winer, and Mohsen Al-Ghosein at Microsoft in 1998. SOAP was maintained by the XML Protocol Working Group of the World Wide Web Consortium until 2009....
read more
Document Type Definition – DTD
A Document Type Definition (DTD) describes the tree structure of a document and something about its data. It is a set of markup affirmations that actually define a type of document for the SGML family, like GML, SGML, HTML, XML....
read more
XML | Attributes
Prerequisite: XML | BasicsThe XML attribute is a part of an XML element. The addition of attribute in XML element gives more precise properties of the element i.e, it enhances the properties of the XML element.Syntax:...
read more
HTML Style Tag
The HTML <style> tag in HTML defines CSS for document styling. The <style> element is placed in the <head> section of the document....
read more
XMPP Protocol
XMPP is a short form for Extensible Messaging Presence Protocol. It’s protocol for streaming XML elements over a network in order to exchange messages and present information in close to real-time....
read more
HTML | Responsive full page image using CSS
Responsive Web design (RWD), is a design strategy developed to cope with the amazing popularity of mobile devices for viewing the Web. Responsive images are an important component of responsive Web design (RWD), Responsive web design is a new approach to website design that ensures users have a good viewing experience no matter what type of device they’re using. Building separate sites for every type of device simply wouldn’t be sustainable. Instead, we can use the concept of responsive design, which calls for building flexible and fluid layouts that adapt to almost any screen....
read more
What is a mashup in web technology ?
A Mashup (also known as web application hybrid), is a technique that websites use to provide resources, functionalities, and services from multiple sources. To put it in layman’s terms, a mashup works as an aggregator of different services. They mostly use public APIs that are generally free to use and thus, create a new service from existing ones....
read more
DTD Full Form
DTD stands for Document Type Definition. It is a document that defines the structure of an XML document. It is used to describe the attributes of the XML language precisely. It can be classified into two types namely internal DTD and external DTD. It can be specified inside a document or outside a document. DTD mainly checks the grammar and validity of an XML document. It checks that an XML document has a valid structure or not....
read more
XQuery | Installation and Example
XQuery: XQuery is the language for querying XML data. It is used to retrieve information stored in XML format. XQuery for XML is similar to SQL for databases. It can be used on XML Databases, relational databases containing data in XML formats, or XML documents. XQuery was designed by W3C and it first appeared in 2007. It is a W3C recommendation from April 8, 2014, which is supported by all major databases....
read more
How to Escape Characters in XML ?
Escaping characters in XML is important because it ensures that special characters like <, >, &, and “, which have special meanings in XML, are properly encoded as entities like &lt;, &gt;, &amp;, &quot;, respectively....
read more